home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Toolbox / Menu Defproc 1.0.3 / DrawTkl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-02  |  1.1 KB  |  42 lines  |  [TEXT/MPS ]

  1. #ifndef _drawtkl_
  2. #define _drawtkl_
  3. /******************************************************************************\
  4. * Header Files
  5. \******************************************************************************/
  6.  
  7. #ifndef __MENUS__
  8. #include <Menus.h>
  9. #endif
  10.  
  11. #ifndef __TYPES__
  12. #include <Types.h>
  13. #endif
  14.  
  15. #ifndef _concordia_
  16. #include "Concordia.h"
  17. #endif
  18.  
  19.  
  20. /******************************************************************************\
  21. * Constants and Macros
  22. \******************************************************************************/
  23.  
  24. /* SICN Resource Icon Indeces */
  25. #define topScroll 0 //Specifies top scroll arrow drawing
  26. #define botScroll 1 //Specifies bottom scroll arrow drawing
  27. #define heirArrow 2 //Specifies hierarchical arrow drawing
  28.  
  29. #define scrlIconHeight 8 //Height of scroll icon in pixels
  30.  
  31.  
  32. /******************************************************************************\
  33. * Function Prototypes
  34. \******************************************************************************/
  35.  
  36. void DoDrawMsg (MenuHandle, Rect *);
  37. void DrawItem (Str255, ItemInfoPtr, Rect *, short);
  38. void DrawScroll (Rect *, short);
  39.  
  40.  
  41. #endif
  42.